From: Euan Harris Date: Mon, 1 Dec 2014 10:47:33 +0000 (+0000) Subject: libxl: libxl_domain_info: fix typo in error message X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4046 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/?a=commitdiff_plain;h=1fed4af8d870e6fe4c4e2eceafaf8afba49fc169;p=xen.git libxl: libxl_domain_info: fix typo in error message Signed-off-by: Euan Harris Acked-by: Ian Campbell --- diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index f84f7c2413..c50c323376 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -674,7 +674,7 @@ int libxl_domain_info(libxl_ctx *ctx, libxl_dominfo *info_r, ret = xc_domain_getinfolist(ctx->xch, domid, 1, &xcinfo); if (ret<0) { - LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "geting domain info list"); + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "getting domain info list"); return ERROR_FAIL; } if (ret==0 || xcinfo.domain != domid) return ERROR_INVAL;